April 10, 2019
v3 E911 verify address
This API function allows you to validate E911 Order fields (including the TN, name, location, etc.). Validates required fields, field lengths, etc
URI:
https://api.multitel.net/v3/tn911validate
Parameters:
- tn : 10 digit phone number (Example: 8886868581) - name : Subscriber full name - streetNum : Street number (Example: "100" for "100 Main St" address) - streetInfo : Street name (Example: "Main St" for "100 Main St" address) - location: Specific location (Example: Suite 650) - 20 characters maximum length (optional) - city : City part of the address (Example: Royal Oak) - state : State part of the address ,as "2" alpha isocode (Example "MI" for "Michigan", "NY" for "New York") - postalCode : Zip/Postal Code part of the address (Example: 48068)
Methods:
POST
Sample successful output:
{
"status": {
"code": 200,
"msg": ""
},
"response": {
"tn": "8886868581",
"name": "MultiTEL"
"streetNum": "100",
"streetInfo": "Main Street",
"location": "Suite 650",
"city": "Royal Oak",
"state": "MI",
"postalCode": "48068",
"validationMsg": "Valid Address",
"validationResult": 0,
"correctedStreetNum": "100",
"correctedStreetInfo": "Main St",
"correctedLocation": "Ste 650",
"correctedCity": "Royal Oak",
"correctedState": "MI",
"correctedPostalCode": 48068
}
}Sample error output:
{
"status": {
"code":"414",
"msg":"Error: 'tn' parameter not provided"
},
"response":""
}Other error codes:
401 - no auth (wrong authentication parameters) 403 - forbidden (your account is not allowed to run this API function) 414 - wrong parameters provided (parameters missing or failing validation) 404 - address not found / could not validate 202 - address corrected